home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 151-175 / scopedisk168 / tinytools / tee / tee.man < prev    next >
Text File  |  1995-03-19  |  2KB  |  42 lines

  1.  
  2. NAME
  3.        Tee - pipe fitting
  4.  
  5.  
  6. SYNOPSIS
  7.        Tee [-a | APPEND] <File> [...]
  8.  
  9.  
  10. REQUIREMENTS
  11.        The ARP library
  12.  
  13.  
  14. DESCRIPTION
  15.        Tee copies the standard input to the standard output while making
  16.        copies of it into one or more files. The -a or APPEND switch makes
  17.        Tee append to old files instead of creating new files. If a target
  18.        file does not exist, and -a has been selected, it will be created.
  19.  
  20.  
  21. EXAMPLES
  22.        prompt> Tee T:keys | QueryingTool
  23.        prompt> QueryingTool <T:keys | Tee T:log
  24.        This saves keystrokes destined for a CLI tool to a file, and
  25.        reuses them whilst making a reference copy of the output.
  26.  
  27.  
  28. BUGS/LIMITATIONS
  29.        -Use the end-of-file control key specific to your shell to terminate
  30.         if you run Tee as the first part of your pipe-command line.
  31.        -Tee was modelled after one of the Unix-alike utilities distributed
  32.         in a uusenet posting by David Gay. Tiny-Tee's functionality differs
  33.         from that version in 3 ways:
  34.         1. The -a switch can be substituted by an equivalent switch, namely
  35.            'APPEND'.
  36.         2. The ARP template needs switches to be specified after multiargs,
  37.            still you may place the -a switch anywhere in the command line,
  38.            thus it is up to you to preserve the Unix syntax (-a in front).
  39.         3. David's Tee version does not seem to want to process non-ascii
  40.            byte streams (this might be as intended). Tiny-Tee copies every
  41.            byte you feed into it.
  42.